Labels: text | font | screenshot OCR: The symbolic constants in fent.h that are used to open a file can be combined with the bitwise OR operator. Here, we are specifying that the file is to be opened for writing only, that the file is to be opened exclusively, and that the file is to be created if it doess not exist. O_EXCL gets used only with O CREAT. If the file is created, then the third argument sets the file permissions; otherwise, the argument has no effect. We will explain about file permissions later on.